home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form11
- BorderStyle = 1 'Fixed Single
- Caption = "Other Size..."
- ClientHeight = 1695
- ClientLeft = 3210
- ClientTop = 2250
- ClientWidth = 2940
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 177
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- LinkTopic = "Form11"
- MaxButton = 0 'False
- MinButton = 0 'False
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 1695
- ScaleWidth = 2940
- Begin VB.CommandButton cancel
- BackColor = &H80000005&
- Caption = "Cancel"
- Height = 375
- Left = 480
- TabIndex = 1
- Top = 1200
- Width = 1935
- End
- Begin VB.CommandButton ok
- BackColor = &H80000005&
- Caption = "OK"
- Default = -1 'True
- Height = 375
- Left = 480
- TabIndex = 3
- Top = 720
- Width = 1935
- End
- Begin VB.TextBox Text1
- Height = 375
- Left = 1200
- TabIndex = 0
- Top = 120
- Width = 1575
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- Caption = "Other Size:"
- BeginProperty Font
- Name = "Arial"
- Size = 9.75
- Charset = 177
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 120
- TabIndex = 2
- Top = 240
- Width = 1095
- End
- Attribute VB_Name = "Form11"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Sub cancel_Click()
- Unload Me
- End Sub
- Sub ok_Click()
- Dim l0020 As Variant
- l0020 = Text1.Text
- Form1.main.SelText = "<font size=" & Chr(34) & l0020 & Chr(34) & ">" + Form1.main.SelText + "</font>"
- Unload Me
- End Sub
-